home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / wb / flynn / source / debug.h next >
C/C++ Source or Header  |  1999-06-15  |  474b  |  25 lines

  1. #ifndef _DEBUG_H
  2. #define    _DEBUG_H 1
  3.  
  4. /*********************************************************************
  5. ----------------------------------------------------------------------
  6.  
  7.     debugging
  8.  
  9. ------------------------------------------------------ tabsize = 4 ---
  10. *********************************************************************/
  11.  
  12. #include <exec/types.h>
  13. #include <assert.h>
  14.  
  15. #ifdef DEBUG
  16. #define DB(x)    x
  17. #else
  18. #define DB(x)    ;
  19. #endif
  20.  
  21. VOID kprintf(STRPTR,...);
  22.  
  23.  
  24. #endif
  25.